home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / embedded / develop / ad2mac.arc / AD11.BAT < prev    next >
DOS Batch File  |  1989-08-04  |  1KB  |  30 lines

  1. echo on
  2. rem  2500AD 68HC11 Batch File - 04 Aug. 1989
  3. rem
  4. rem  This file assembles/links the specified source file to create a listing
  5. rem  file (.LST), an object S-record file (.S19), and a symbolic information
  6. rem  file (.MAC) for Symbolic Debug support on Motorola CDS and HDS-300 systems.
  7. rem
  8. rem    Usage:   AD11  <ad25name>
  9. rem      where:
  10. rem             <ad25name>  is the name of the 2500AD assembler source file
  11. rem                         to be assembled.  A default extension of .ASM is
  12. rem                         assumed.
  13. x68c11 %1 %1.obj -dx
  14. link -c %1.obj -1
  15. rem  NOTE:  AD2MAC set for HDS-300.  For CDS operation, add "/c" option below!
  16. ad2mac %1.lst
  17. rem
  18. rem  If using an IBM-PC/AT, you can use the HDS*.EXE utilities (available on
  19. rem  the FREEWARE BBS) to download the object and symbolic files to your
  20. rem  HDS-300 system as follows (just delete the "rem " at the beginning of
  21. rem  the following lines!).
  22. rem rem       NOTE:  STOMEM.EXE prompt responses=  'S', 'CPU', and 'L'.
  23. rem stomem %1.s19
  24. rem pause ===  Insert an HDS-300 diskette into drive A:  ===
  25. rem hdswrite %1.mem A:
  26. rem hdswrite %1.mac A:
  27. rem rem ======================================================================
  28. rem rem === Remember, do "DIR ;PR" to the newly installed disk to init. it!
  29. rem rem ***END***
  30.